home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 2614.ZIP / TSL.ZIP / TSL.DOC < prev    next >
Text File  |  1989-08-29  |  958b  |  29 lines

  1. Documentation for TSL.asm
  2.  
  3. This little program was intended for use with Clipper Summer '87.
  4. It provides the  capability to translate any string  passed to it
  5. by  Clipper  by  searching  a  Source  translation  table  for an
  6. occurrence of  each character in the  passed string and replacing
  7. the  character  with  the  corresponding  character  in  the Dest
  8. translation  table  if  the  passed  character  is located in the
  9. Source table.
  10.  
  11. The syntax for calling this UDF from Clipper is:
  12.  
  13. TSL(String,SourceTable,DestTable,LenSourceTable,LenString), or as
  14. declared in TSL.asm:
  15.  
  16. TSL <char String,char Source,char Dest,int TableLen,int FieldLen>
  17.  
  18. This  function is  particularly useful  when translating  foreign
  19. characters  into their  English equivalents  during indexing,  so
  20. that the  indexed strings will  appear in their  proper places in
  21. the index.
  22.  
  23. Placed in the public domain.
  24.  
  25. Brian Corll
  26. August 29, 1989
  27. Mechanicsburg,PA
  28.  
  29.